Snippets in VSCode

Posted on 2022-10-05 by

henrikvilhelmberglund

Snippets in VSCode

(feature for quickly adding code for functions, if-else statements and much more)
  1. In settings search for Snippet Suggestions and switch "inline" to "top"
  2. In a .js file write for example fun and intellisense should show function, press enter and code for creating a function will be inserted
  3. Like this:
function name(params) {
  
}
  1. The function name is selected and you can type to replace the text with your desired function name
  2. If you press tab the cursor jumps to params where you can write parameter names
  3. If you press tab again the cursor jumps to the next row where you can write the code itself
  4. You can also use shift tab to jump backwards
  5. Success!

More info https://code.visualstudio.com/docs/editor/userdefinedsnippets

My personal JS snippets can be found here: https://github.com/henrikvilhelmberglund/JS-snippets/blob/main/javascript.json